home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / brv1_b6.zip / BRFREQ < prev    next >
Text File  |  1996-06-02  |  1KB  |  46 lines

  1. @echo off
  2. rem  * Sample DOORS file for PCBoard to use BrFreq,
  3. rem  * Base Runners User request DOOR
  4.  
  5. rem  * Only if you have problems with users
  6. rem  * FOLLOWING the one who logged off in the
  7. rem  * door getting the BYE stuffed into their
  8. rem  * keyboard buffer!
  9. rem  del d:\br\pcbstuff.kbd
  10.  
  11. rem  * Run it from the current nodes directory, alter to suit your paths
  12. d:\br\brfreq.exe
  13.  
  14. rem  * Make sure we are on OUR PCB drive
  15. %PCBDRIVE%
  16. rem  * Make sure we are in the right directory
  17. cd %PCBDIR%
  18.  
  19. rem  * Node traps for returns, add as many as you need
  20. rem  * If you have alternate bat file names, this is helpful
  21. if (%PCBNODE%)==(2) goto node2out
  22. if (%PCBNODE%)==(3) goto node3out
  23.  
  24. rem  * Fallthrough
  25. board
  26.  
  27. rem  * OOOPS, major error
  28. goto end
  29.  
  30. rem  * Normal node exits, as many as you need or one generic one
  31. :node2out
  32. g:
  33. cd \pcb
  34. call BOARD.BAT
  35.  
  36. :node3out
  37. g:
  38. cd \pcb3
  39. call BOARD.BAT
  40.  
  41. :end
  42.  
  43.  
  44. rem  * Of course there are MANY variations on this. It is only to serve
  45. rem  * as an example to help you.
  46.